home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 July: Mac OS SDK / Dev.CD Jul 97 SDK2.toast / Development Kits (Disc 2) / Thread Manager / Thread Manager 2.1.1d1+ / ThreadedSort / Sprocket / Interfaces / SplashWindow.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-04-28  |  619 b   |  36 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        SplashWindow.h
  3.  
  4.     Contains:    The splash screen window
  5.                 
  6.     Written by: Dave Falkenburg
  7.     
  8.     Copyright:    © 1993-94 by Dave Falkenburg, all rights reserved.
  9.  
  10.     Change History (most recent first):
  11.      
  12.          <2>     11/8/94    DRF        Keep a copy of the PicHandle so we can better handle a missing
  13.                                     splash picture.
  14.  */
  15.  
  16. #ifndef        _SPLASHWINDOW_
  17. #define        _SPLASHWINDOW_
  18.  
  19. #ifndef        _WINDOW_
  20. #include    "Window.h"
  21. #endif
  22.  
  23. class    TSplashWindow    :    public TWindow
  24.     {
  25. public:
  26.                         TSplashWindow();
  27.                         ~TSplashWindow();
  28.  
  29.     virtual WindowPtr    MakeNewWindow(WindowPtr behindWindow);
  30.  
  31. protected:
  32.     PicHandle            fSplashPicture;
  33.     };
  34.  
  35. #endif
  36.